.about-main{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.about-main h1{
    font-family: "Kanit", sans-serif;
    font-size: 65px;
    font-weight: 500;
    color: black;
    margin: 0;
    margin-top: 25px;
    margin-bottom: 20px;
}
.about-main p{
    width: 58%;
    font-family: "Kanit", sans-serif;
    font-size: 26px;
    font-weight: 400;
    color: rgb(66, 66, 66);
    margin: 0;
    margin-bottom: 20px;
    text-align: center;
}
.about-main img{
    width: 60%;
    height: auto;
    margin-top: 20px;
    margin-bottom: 50px;
    border-radius: 20px;
}
@media (max-width: 768px) {
    .about-main h1{
        font-size: 40px;
    }
    .about-main p{
        width: 85%;
        font-size: 18px;
    }
    .about-main img{
        width: 95%;
        margin-top: 20px;
        margin-bottom: 50px;
        border-radius: 20px;
    }
}